home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 16
/
CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso
/
CUCD
/
Previews
/
ArtEffect2
/
rexx
/
repaint.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-04-12
|
710b
|
42 lines
/**/
options results
address "ArtEffect"
dummy = random(,,time(seconds))
createbrush rec size 10 prop 50 angle 45
curve = ""
do i=1 to 128
curve = curve || '255'
if i~=128 then curve = curve || ','
end
brushattr intensity curve
curve = ""
do i=1 to 128
curve = curve || i
if i~=128 then curve = curve || ','
end
brushattr density curve
curve = ""
do i=1 to 128
curve = curve || '5'
if i~=128 then curve = curve || ','
end
brushattr roughness curve
get stem pinfo. pictureinfo
xmax = pinfo.width
do i=0 to xmax+100 by 3
x1 = i-100+random(0,10)-5
y1 = random(0,20)
x2 = i+random(0,10)-5
y2 = random(pinfo.height-20,pinfo.height)
line x1 y1 x2 y2 pt cloner mode impressionist strength 100
end